6f1a89c0eafe37aac234c8061124ac1ca8ddc5be,java/Controls.java,jRadioButton,SetTextSize,#number#,2136

Before Change


}

public void SetTextSize(float size) {
	this.setTextSize(TypedValue.COMPLEX_UNIT_PX, size); 
}

}

After Change


}

public void SetTextSize(float size) {
	if (mChangeFontSizeByComplexUnitPixel) 
	    this.setTextSize(TypedValue.COMPLEX_UNIT_PX, size);
	else 
		this.setTextSize(size);
}     

public void SetChangeFontSizeByComplexUnitPixel(boolean _value) {